Skip to content

Commit

Permalink
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions ffv1.md
Original file line number Diff line number Diff line change
@@ -619,14 +619,14 @@ Inferred to be 0 if not present.
`primary_color_count` is defined as 1 + ( chroma_planes ? 2 : 0 ) + ( alpha_plane ? 1 : 0 ).
`plane_pixel_height[ p ]` is the height in pixels of plane p of the slice.
plane\_pixel\_height[ 0 ] and plane\_pixel\_height[ 1 + ( chroma\_planes ? 2 : 0 ) ] value is slice\_pixel\_height
`plane_pixel_height[ p ]` is the height in pixels of plane p of the slice.
plane\_pixel\_height[ 0 ] and plane\_pixel\_height[ 1 + ( chroma\_planes ? 2 : 0 ) ] value is slice\_pixel\_height
if chroma\_planes is set to 1, plane\_pixel\_height[ 1 ] and plane\_pixel\_height[ 2 ] value is $\lceil slice\_pixel\_height / v\_chroma\_subsample \rceil$
`slice_pixel_height` is the height in pixels of the slice.
`slice_pixel_height` is the height in pixels of the slice.
Its value is $\lfloor ( slice\_y + slice\_height ) * slice\_pixel\_height / num\_v\_slices \rfloor - slice\_pixel\_y$
`slice_pixel_y` is the slice vertical position in pixels.
`slice_pixel_y` is the slice vertical position in pixels.
Its value is $\lfloor slice_y * frame\_pixel\_height / num\_v\_slices \rfloor$
## Line
@@ -643,14 +643,14 @@ Its value is $\lfloor slice_y * frame\_pixel\_height / num\_v\_slices \rfloor$
|    } | |
|} | |
`plane_pixel_width[ p ]` is the width in pixels of plane p of the slice.
plane\_pixel\_width[ 0 ] and plane\_pixel\_width[ 1 + ( chroma\_planes ? 2 : 0 ) ] value is slice\_pixel\_width
`plane_pixel_width[ p ]` is the width in pixels of plane p of the slice.
plane\_pixel\_width[ 0 ] and plane\_pixel\_width[ 1 + ( chroma\_planes ? 2 : 0 ) ] value is slice\_pixel\_width
if chroma\_planes is set to 1, plane\_pixel\_width[ 1 ] and plane\_pixel\_width[ 2 ] value is $\lceil slice\_pixel\_width / v\_chroma\_subsample \rceil$
`slice_pixel_width` is the width in pixels of the slice.
`slice_pixel_width` is the width in pixels of the slice.
Its value is $\lfloor ( slice\_x + slice\_width ) * slice\_pixel\_width / num\_h\_slices \rfloor - slice\_pixel\_x$
`slice_pixel_x` is the slice horizontal position in pixels.
`slice_pixel_x` is the slice horizontal position in pixels.
Its value is $\lfloor slice_x * frame\_pixel\_width / num\_h\_slices \rfloor$
## Slice Footer

0 comments on commit 6c03d12

Please sign in to comment.